home *** CD-ROM | disk | FTP | other *** search
/ L' Effet Pommier 3 / L'Effet Pommier - Volume 03.iso / Communication / MacWebLint-1.013 / Announce next >
Text File  |  1996-01-04  |  2KB  |  67 lines

  1.  
  2. Weblint 1.013 is now available:
  3.  
  4.         http://www.khoral.com/staff/neilb/weblint.html
  5.         ftp://ftp.khoral.com/pub/weblint/weblint-1.013.tar.gz
  6.         ftp://ftp.khoral.com/pub/weblint/weblint.zip
  7.  
  8. Weblint is a syntax and minimal style checker for HTML: a perl script which
  9. picks fluff off html pages, much in the same way traditional lint picks fluff
  10. off C programs.
  11.  
  12. Changes are summarized below, see the ChangeLog file in the distribution for
  13. more detail.
  14.  
  15. Thanks to everyone for patches, suggestions and bug reports,
  16. neilb
  17.  
  18.             Changes in Weblint 1.013
  19.  
  20.     *    Added a warning 'literal-metacharacter', which warns about
  21.     metacharacters included literally, where they should be represented
  22.     using entities. Currently just warns about >. Warning is enabled by
  23.     default. Simple testcase added to testsuite.
  24.  
  25.     *    The variable 'directory-index' can now be set to a comma-separated
  26.     list of filenames, if you want to allow multiple names for directory
  27.     index files, such as welcome.html or index.html. In your .weblintrc:
  28.         set directory-index = welcome.html, index.html
  29.  
  30.     *    Added support for the netscape extensions added in netscape 2:
  31.         -    ENCTYPE attribute for FORM element
  32.         -    USEMAP attribute for IMG element (client side image maps)
  33.         -    MAP and AREA elements
  34.  
  35.     *    Added a warning 'require-doctype', which if results in a warning if a
  36.     page does not have a DOCTYPE as the first element. Disabled by default.
  37.     Not enabled with -pedantic.
  38.  
  39.     *    Removed the todo list from the weblint script. If the url-get
  40.     variable is set, then "weblint -todo" will pull down the todo
  41.     list from our ftp server, else the URL for the todo list is printed.
  42.     The 'url-get' variable is now undefined by default.
  43.  
  44.     *    Reformatted the text displayed with the -help and -U switches,
  45.     so that it will fit on a standard sized tty or PC.
  46.  
  47.     *    Fixed bug related to container elements where the closing tag
  48.     is optional, such as LI. If a comment was the last thing,
  49.     then weblint would warn that the container was empty. E.g.
  50.         <UL>
  51.         <LI>line 9
  52.         <!-- line 10 -->
  53.         <LI>line 11
  54.         </UL>
  55.  
  56.     *    The README was still claiming that weblint.ps was included with the
  57.     distribution. It now gives the URL for the copy on our ftp server.
  58.  
  59.     *    Added a semi-colon to a single statement in an else clause,
  60.     which was apparently causing problems under perl 4.019.
  61.  
  62.     *    Fixed a bug where enabling the java extension would also enable
  63.     the netscape extension.
  64.  
  65.     *    Fixed a couple'a bugs in the testsuite.
  66.  
  67.